From 07df28e8e13325e94be6ff9d2bada7cbdf47ae33 Mon Sep 17 00:00:00 2001 From: Jimmy Cuadra Date: Tue, 19 May 2015 21:06:24 -0700 Subject: [PATCH] Clarify that --jobs doesn't affect parallelism when running the resulting binary. --- src/bin/bench.rs | 3 +++ src/bin/test.rs | 3 +++ 2 files changed, 6 insertions(+) diff --git a/src/bin/bench.rs b/src/bin/bench.rs index dd5bb5ee5..ecc8fd686 100644 --- a/src/bin/bench.rs +++ b/src/bin/bench.rs @@ -51,6 +51,9 @@ which indicates which package should be benchmarked. If it is not given, then the current package is benchmarked. For more information on SPEC and its format, see the `cargo help pkgid` command. +The --jobs argument affects the building of the benchmark executable but does +not affect how many jobs are used when running the benchmarks. + Compilation can be customized with the `bench` profile in the manifest. "; diff --git a/src/bin/test.rs b/src/bin/test.rs index 6199f917b..03ce558cf 100644 --- a/src/bin/test.rs +++ b/src/bin/test.rs @@ -55,6 +55,9 @@ which indicates which package should be tested. If it is not given, then the current package is tested. For more information on SPEC and its format, see the `cargo help pkgid` command. +The --jobs argument affects the building of the test executable but does +not affect how many jobs are used when running the tests. + Compilation can be configured via the `test` profile in the manifest. "; -- 2.30.2